home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Ware Multimedia 1995 May
/
cd Ware (Juegos) Epimundo.iso
/
DOS
/
PRGMMING
/
CNVLIBD.ZIP
/
COUNT.BAT
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1994-08-06
|
204 b
|
11 lines
@echo off
REM COUNT.BAT - Count from 1 to specified number
REM EXAMPLE: COUNT 100
SET COUNT=0
:TOP_OF_LOOP
CEnvi COUNT = COUNT + 1
ECHO %COUNT%
IF NOT %COUNT%==%1 GOTO TOP_OF_LOOP